body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.policy-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40%;
    background-color: #e5f6ff;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: 1;
}

.policy-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 40%;
    background-color: #e5f6ff;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    z-index: 1;
}

.policy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #FF007F, #00ADEF);
}

.list-item-marker::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #FF007F;
    border-radius: 2px;
}

@media (max-width: 640px) {

    .policy-header::before,
    .policy-header::after {
        width: 60%;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.pixel-decoration {
    animation: float 4s ease-in-out infinite;
}